@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&family=Manrope&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');


:root {
  --background-color: #ffffff;
  --default-color: #000000;
  --heading-color: #2d465e;
  --accent-color: #0092d8;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

/* Nav Menu Colors  */
:root {
  --nav-color: #212529;
  --nav-hover-color: #0092d8;
  --nav-mobile-background-color: #ffffff;

}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body,
html {
  font-family: "Manrope", serif;
  font-optical-sizing: auto;
  font-style: normal;
  overflow-x: hidden;
  background-color: white;

  width: 100%;
  max-width: 1900px;
  margin: 0 auto;


}

/* header */
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0px;
  transition: all 0.5s;
  z-index: 997;

}


.header .header-container {
  background: var(--surface-color);
  border-radius: 45px;
  padding: 0px 55px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  text-decoration: none;

}

.scrolled .header .header-container {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);

}

.header .logo {
  line-height: 1;
  padding-left: 5px;
  margin: -17px;
}

.header .logo img {
  max-height: 140px;
  margin-right: 8px;

}

.navmenu a {
  text-decoration: none;
  background-color: #ffffff;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {

  text-decoration: none;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.navmenu .dropdown ul {
  background-color: white;
  padding: 0;

  margin: 0;
  list-style: none;
}

/* Optional: Style the dropdown items */
.navmenu .dropdown ul li a {
  color: black;
  padding: 15px 15px;
  text-decoration: none;
  display: block;
  padding-bottom: 21px !important;
}

.navmenu .dropdown ul li a.last-child {
  padding-bottom: 10px !important;
}

.navmenu .dropdown ul li {
  color: black;

  margin-top: -9px;
  text-decoration: none;
  display: block;
}

/* Optional: Add hover effect */
.navmenu .dropdown ul li a:hover {
  background-color: var(--accent-color);
}


@media (max-width: 1200px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
    padding-left: 30px;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 10px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: 100%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    right: 100%;
    visibility: visible;
    width: 115%;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {

  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;

  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}




/* hero */
.video-background {
  position: relative;
  height: 700px;
  /* Adjust as needed */
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  /* Center content vertically */
  justify-content: center;
  /* Center content horizontally */
}

.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);

  object-fit: cover;
  /* Ensures video covers the entire section */
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.772);
}

.content {
  position: relative;
  z-index: 2;
  margin-top: 100px;
  color: white;

  text-align: left;
  max-width: 650px;
  padding: 0px 20px;
  margin-right: 610px
}

.content h5 {
  font-size: 4.5rem;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;

  /* Responsive font size */
  margin-bottom: 1rem;

}

.content h1 {
  font-size: 4.5rem;
  /* Responsive font size */
  margin-bottom: 1rem;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: bold;

}

@media (max-width: 768px) {
  .video-background {
    height: 400px;
    display: flex;
    justify-content: flex-start; /* Align content to the left */
    padding-left: 0px; /* Add padding for spacing */
  }

  .content {
    text-align: left;
    max-width: 90%;
    padding: 20px;
    margin: 0;
  }

  .content h5 {
    font-size: 2rem;
  }

  .content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .video-background {
    height: 300px;
    margin-left: -550px; /* Adjust padding for smaller screens */
  }

  .content h5 {
    font-size: 1.8rem;
  }

  .content h1 {
    font-size: 2rem;
  }
}
/* services short boxs */
/* .service-container {
  padding: 0;
}

.row {
  display: flex;
  align-items: flex-start;
  margin: 0;
  padding: 0;
}
.col-md-2 {
  padding: 0;
  margin: 0;

}


.service-card {
  background-color: #ffffff;
  margin: 0;
  height: 250px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  font-family: "Manrope", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;


}

.service-card:hover {
  color: white;
  background-image: url(pics/serv\ back.png);
  z-index: 2;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;


}

.service-icon {
  font-size: 40px;
  margin-bottom: 10px;
  color: var(--accent-color);
  transition: color 0.2s ease;
  margin-top: 30px;
}

.service-card:hover .service-icon {
  color: white;
}

.service-card h5 {
  margin: 0;
  transition: color 0.2s ease;

}

.service-card:hover h5 {
  color: white;
}

.service-btn {
  text-decoration: none;
  color: #000000;
} */



/* packages */
.packages-container {
  background: linear-gradient(135deg, #ffffff, #ffffff);
  padding: 80px 100px 100px;
  max-width: 1800px;
  margin: 0 auto;


  background-size: cover;

}

.servicesheader {
  text-align: left;
  font-size: 2rem;
}

.productsheader {

  text-align: left;
  font-size: 2rem;

}

.package-container {
  max-width: 1300px;
  margin: 0 auto;
}

.packages-header {
  font-size: 5rem;
  font-weight: bold;
  color: #000000;
  text-align: left;
  margin-bottom: 20px;
}

.packages-description {
  font-size: 1.1rem;
  color: #000000;
  text-align: left;
  margin-bottom: 50px;
}

.packages-card {

  transition: all 0.4s ease;
  border: none;
  border-radius: 15px;
  background: linear-gradient(135deg, #ffffff, #f0f0f0);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  height: 200px;
  max-width: 290px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
}

.packages-card:hover {
  transform: translateY(-10px);
  background: linear-gradient(135deg, #7bbbef,  #7bbbef);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.packages-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #04a4e4;
  transition: color 0.3s ease;
}

.packages-title a {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.packages-title a:hover {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: white;

  transition: color 0.3s ease;
}



.packages-card:hover .packages-icon {
  color:
  #04a4e4;
}

.packages-title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
  transition: color 0.3s ease;
}

.packages-card:hover .packages-title {
  color: #ffffff;
}

.packages-text {
  font-size: 1rem;
  color: #666;
  transition: color 0.3s ease;
}

.packages-card:hover .packages-text {
  color: #e3f2fd;
}


@media (max-width: 768px) {
  .packages-container {
    padding: 50px 20px; /* Reduce padding for smaller screens */
  }

  .package-container {
    max-width: 100%;
  }

  .packages-header {
    font-size: 3rem; /* Decrease header size */
    text-align: left;/* Center align on mobile */
  }

  .packages-description {
    font-size: 1rem; /* Slightly reduce text size */
    text-align: left; /* Center align */
    margin-bottom: 30px;
  }

  .packages-card {
    height: auto; /* Allow height to adjust */
    max-width: 100%; /* Make sure cards are responsive */
    padding: 20px;
    margin-bottom: 20px;
  }

  .packages-title {
    font-size: 1.4rem;
  }

  .packages-text {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .packages-header {
    font-size: 2.5rem;
  }

  .packages-description {
    font-size: 0.9rem;
  }

  .packages-card {
    padding: 15px;
  }

  .packages-title {
    font-size: 1.3rem;
  }

  .packages-text {
    font-size: 0.85rem;
  }
}



/* what we do */
/* what we do */
/* .center-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 70px;
}

.whatwe-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.whatwedo-container {
  padding: 7px;
}

.whatwedo-container p {
  font-size: 1.1rem;
  padding-top: 8px;
  font-weight: 300;
}

h1 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: bolder;
  font-size: 4rem;
}

.whatwe-text {
  max-width: 600px;
  font-size: 1.2rem;
  line-height: 1.6;
  margin-top: 40px;
}


.whatwedo-card-titleone {
  color: #a855f7;
  font-size: 1.5rem;
  font-weight: bold;
}

.whatwedo-card-titletwo {
  color: #22c55e;
  font-size: 1.5rem;
  font-weight: bold;
}

.whatwedo-card-titlethre {
  color: #ff8c00;
  font-size: 1.5rem;
  font-weight: bold;
}

.whatwedo-card-titlefour {
  color: #007bff;
  font-size: 1.5rem;
  font-weight: bold;
}

.whatwedo-btn-btn {
  text-decoration: none;
}


.custom-card {
  border-radius: 8px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  padding: 15px;
  height: 270px;
  width: 320px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


.business-card {
  background-color: #f4e8ff6f;
  box-shadow: 0 7px 5px rgba(228, 191, 255, 0.5);
  border: 1px solid #dab6fb88;
}

.erp-card {
  background-color: #d9f5e370;
  box-shadow: 0 7px 5px  rgba(169, 228, 183, 0.5);
  border: 1px solid #91e4b1;
}

.crm-card {
  background-color: #ffead571;
  box-shadow: 0 7px 5px rgba(255, 218, 179, 0.5);
  border: 1px solid #febd8e;
}

.marketing-card {
  background-color: #e4f2ff6f;
  box-shadow:  0 7px 5px rgba(179, 213, 255, 0.5);
  border: 1px solid #81bdf9;
}

.business-icon-circle {
  width: 80px;
  height: 80px;
  background:#e0bfff9b;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 200px;
  bottom: 0px;
  right: -10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.crm-icon-circle {
  width: 80px;
  height: 80px;
  background:#ffc49a78;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 200px;
  bottom: 0px;
  right: -10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.erp-icon-circle {
  width: 80px;
  height: 80px;
  background: rgba(169, 228, 183, 0.5);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 200px;
  bottom: 0px;
  right: -10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.marketing-icon-circle {
  width: 80px;
  height: 80px;
  background: #92c9ff8f;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 200px;
  bottom: 0px;
  right: -10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.icon {
  font-size: 28px;
}


.business-card .icon {
  color: #a855f7;

}

.erp-card .icon {
  color: #22c55e;
}

.crm-card .icon {
  color: #ff8c00;
}

.marketing-card .icon {
  color: #007bff;
}


.row .col-6:nth-child(odd) {
  margin-top: 15px;
}

.row .col-6:nth-child(even) {
  margin-top: -15px;
}

*/



/* about us short */
/* .about .about-meta {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
  margin-top: 2rem;
  display: inline-block;
  font-family: "Manrope", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.about .about-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

.about .about-description {
  margin-bottom: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .feature-list-wrapper {
  margin-bottom: 2rem;
}

.about .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about .feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.about .feature-list li i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.about .profile .profile-image {
  width: 0px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.about .profile .profile-name {
  font-size: 1.125rem;
  margin: 0;
}

.about .profile .profile-position {
  color: var(--accent-color);
  margin: 0;
  font-size: 0.875rem;
}

.btn-gradient {
  background: linear-gradient(45deg, #362ff7, #0eb7d8);
  color: white;
  width: 10rem;
  padding: 10px;
  margin-top: -20px;


}

.btn-gradient:hover {
  background: black;
  color: white;
}

.about .image-wrapper {
  position: relative;
}

.about .image-wrapper .small-image {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 45%;
  border: 8px solid var(--surface-color);
}

.about .image-wrapper .experience-badge {
  position: absolute;
  bottom: 5%;
  right: 5%;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  min-width: 200px;
  animation: experience-float 3s ease-in-out infinite;
}

.about .image-wrapper .experience-badge h3 {
  color: var(--contrast-color);
  font-size: 2.5rem;
  margin: 0;
  line-height: 0.5;
}

.about .image-wrapper .experience-badge h3 span {
  font-size: 1rem;
  display: inline-block;
  margin-left: 0.25rem;
}

.about .image-wrapper .experience-badge p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
}



@media (max-width: 992px) {
  .about .about-meta {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    margin-top: 2rem;
    display: inline-block;
    font-family: "Manrope", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    margin-left: -10px;
  }

  .about .feature-list-wrapper {
    margin-bottom: 2rem;
    margin-left: -20px;
  }

  .about .about-title {
    font-family: "Manrope", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    overflow-x: hidden;
    background-color: white;
    margin-left: -10px;
  }

  .about .about-description {
    margin-bottom: 1rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-left: -10px;
  }

  .about .image-wrapper .images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-left: -70px;
  }

  .about .image-wrapper {
    padding-left: 0;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }



  .about .image-wrapper .small-image {
    position: static;
    width: 100%;
    margin: 0 auto;
    border: 0;
  }

  .about .image-wrapper .experience-badge {
    position: static;
    width: fit-content;
    margin-left: -70px;
  }
}
 */





/* why onfonet */
/* .why-choose-section {
  padding: 80px 0;
  background-color: #ffffff;
  margin-top: 50px;
}

.why-choose-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.feature-box {
  padding: 30px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background-color: #007bff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  transition: background-color 0.3s ease;

}

.feature-box:hover .feature-icon {
  background-color: #000000;
}

.feature-icon i {
  font-size: 36px;
  color: #ffffff;
  transition: color 0.3s ease;
}

.feature-box:hover .feature-icon i {
  color: #ffffff;
}

.feature-content h5 {
  font-weight: bold;
  margin-bottom: 10px;
}

.feature-content p {
  color: #555;
}
 */







/* Strategic Partnerships */
/* .partnership-section {
  padding: 100px 0;
  background-color: #ffffff;
  height: 750px;

}

.card {
  height: 330px;
  width: 400px;
  position: relative;
  overflow: hidden;
  border: none;
  border-radius: 12px;
  transition: transform 0.3s ease;


}

.card img {
  width: 400px;
  height: 330px;
  object-fit: cover;
}

.card-body {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;

}

.card-title {
  font-size: 1.5rem;
  font-weight: bold;
}

.hover-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 20px;
  background: transparent;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;

}

.card:hover .hover-text {
  opacity: 1;
  color: #ffffff;
}

.card:hover {
  transform: scale(1.05);
}

.see-more {
  margin-top: 20px;
}
 */




/* Key Statistics Section */
/* .container-fluid-key {
  background-image: url(pics/map.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.stats-container {
  margin-top: 4rem;
  font-family: "Manrope", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.stats-img {
  max-width: 100%;
  height: 780px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  margin-left: -15px;
}

.stats-heading {
  font-size: 2.5rem;
  font-weight: 600;
}

.stats-subheading {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.stats-progress-heading {
  font-size: 1rem;
  font-weight: 400;
  color: #555;
}

.stats-text {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.progress {
  height: 15px;
  border-radius: 10px;

  width: 40rem;
}

.progress-bar {
  border-radius: 10px;
  text-align: center;
  font-weight: 500;
  color: #fff;
}

.stats-bi {
  margin-right: 10px;
  color: var(--accent-color);
  font-size: 1.4rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.my-3 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.my-4 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.mt-4 {
  margin-top: 1.5rem;
}
 */


/*  industries  */
.indutries {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 10rem;

}

.ind-header {

  margin-top: 80px;
  /*margin-left: -900px; /* Adjusted for left alignment */
  font-size: 3rem;
  font-weight: bold;
  color: #000000;
}

.sub-header {
  margin-top: 10px;
  font-size: 1rem;
  color: #000000;
  max-width: 80ch;
  /* Sets maximum width to 80 characters */
  /*margin-left: -300px; /* Adjusted for left alignment */
  line-height: 1.5;
  /* Optional: improves readability */
  text-align: justify;
}

.bento-box {
  display: grid;
  gap: 10px;
  width: 1300px;
  margin-top: 30px;
  height: auto;
}

.box {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-overlay-ind {
  position: absolute;
  top: 69%;
  left: 5%;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.text-overlay-industries {
  position: absolute;
  top: 85%;
  left: 10%;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 5px;

}

.heading-industries {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
}

.heading-ind {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
}

.read-more {
  font-size: 12px;
  color: white;
  text-decoration: none;
}



.box1 {
  grid-column: 1 / span 1;
  grid-row: 1 / span 2;
}

.box2 {
  grid-column: 2 / span 1;
  grid-row: 1 / span 1;
}

.box3 {
  grid-column: 4 / span 1;
  grid-row: 1 / span 1;
}

.box4 {
  grid-column: 5 / span 1;
  grid-row: 1 / span 2;
}

.box5 {
  grid-column: 2 / span 3;
  grid-row: 2 / span 1;
  height: 250px;
}

.box6 {
  grid-column: 1 / span 1;
  grid-row: 3 / span 1;
}

.box7 {
  grid-column: 2 / span 1;
  grid-row: 3 / span 1;
}

.box8 {
  grid-column: 4 / span 1;
  grid-row: 3 / span 1;
}

.box9 {
  grid-column: 5 / span 1;
  grid-row: 3 / span 1;
}



.carousel-container {
  background-image: url('pics/casestudyback.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 150px 0;
}

#caseStudyCarousel {
  position: relative;
  max-width: 1300px;
  margin: auto;
  overflow-x: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.case-card {
  margin: 1rem;
  background-color: #1a1a1aa5;
  color: white;
  text-align: center;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.744);
  height: 420px;
}

.case-img-top {
  width: 100%;
  height: 750px;
  height: auto;
  border-bottom: 4px solid var(--accent-color);
}

.case-card-body {
  padding: 1rem;
}

.case-card-body p {
  font-size: 1rem;
}

.case-card-title {
  font-size: 0.8rem;
  font-weight: bold;
  margin: 0.5rem 0;
  text-align: left;
}

.section-title {
  font-size: 2rem;
  color: #fff;
  font-weight: bold;
}

.section-subtitle {
  font-weight: bold;
  font-size: 3rem;
  color: var(--accent-color);
}

.slider-controls {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.case-button {
  background-color: var(--accent-color);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-size: 1.2rem;
  margin: 0 0.5rem;
  cursor: pointer;
}

.case-button:hover {
  background-color: #000000;
}

.pbtn {
  text-decoration: none;
  color: white;
  text-align: left;
}


/* traxk */

.track-record-section {
  background-image: url('pics/trackpic2.jpg');
  background-position: center;
  background-size: cover;
  background-position: center;
  color: white;
  padding: 50px;
  /* max-width: 1800px; */
  height: 550px;
  border-radius: 10px;
  margin-top: 50px;
}

.left-section {
  z-index: 2;
  position: relative;
}

.right-section {
  background-color: rgba(27, 27, 27, 0.7);
  backdrop-filter: blur(80px);
  border-radius: 10px;
  padding: 30px;
  margin-top: -20px;

}


.track-record {
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
}


.track-heading {
  font-weight: bold;
  font-size: 2.9rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  width: 400px;

}



.stat {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin: 10px 0;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
  width: 100px;
  text-align: left;

}

.stat-label {
  font-size: 1.5rem;
  color: #ffffff;
  display: flex;
  align-items: center;
}

.stat-label i {
  margin-right: 8px;
  color: var(--accent-color);
  /* Icon in purple */
}




.track-divider {
  width: 2px;
  height: 40px;
  background-color: #ffffffbb;
  margin: 0 25px;
}


/* Responsive Design */
@media (max-width: 1024px) {
  .track-record {
    flex-direction: column;
    align-items: left;
    text-align: left;
    padding: 30px;
  }

  .track-divider {
    height: 50px; /* Smaller for tablets */
    margin: 20px 0;
  }

  .track-divider::before,
  .track-divider::after {
    width: 6px;
    height: 6px;
  }
}

@media (max-width: 768px) {
  .track-record-section {
    height: auto;
    padding: 40px 20px;
  }

  .track-divider {
    height: 40px; /* Adjusted for mobile */
    margin: 15px 0;
  }

  .track-divider::before,
  .track-divider::after {
    width: 5px;
    height: 5px;
  }
}

@media (max-width: 480px) {
  .track-record-section {
    padding: 10px 20px;
  }

  .track-divider {
    height: 30px; /* Even smaller for compact screens */
    margin: 10px ;
  }



}

/* Testimonial Section */
/* .testimonial-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
  max-width: 100%;
  height: 780px;
  background-color: #ffffff;
  background-image: url(pics/3.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  margin-top: 8rem
}

.testimonial-content {
  max-width: 600px;
  margin-left: 280px;

}

.testimonial-img {
  width: 300px;
  height: auto;
  margin-right: -50px;
  border-radius: 20px;

}

.heading2 {
  max-width: 800px;
  margin-left: 140px;
  font-size: 2.5rem;
  margin-top: 0px;

}

.heading1 {
  max-width: 800px;
  margin-left: 140px;
  font-size: 1.85rem;

} */

/* clients logo */
/* .logo-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 170px;
  font-family: "Manrope", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.logo-img {
  margin: 20px;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.logo-img:hover {
  opacity: 1;
} */


/* Quick Start Package */
.quickstart-container {
  background: #ffffff;
  color: #333;
  max-width: 1250px;
  margin: 0 auto;

}


.quickstart-header {
  font-size: 2.5rem;
  font-weight: bold;
}

.quickstart-subtext {
  font-size: 1.2rem;
  color: #000000;
  max-width: 700px;
  margin: auto;
  text-align: left;
}

.divider {
  width: 100px;
  height: 4px;
  background: #007bff;
  border-radius: 10px;
  margin-top: 10px;
}


.quickstart-item {
  background: white;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
  border: 1px solid #ddd;
  height: 400px;
  width: 400px;

  display: flex;
  flex-direction: column;
  justify-content: space-around;
}


.quickstart-item p {
  flex-grow: 1;
}


.quickstart-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}


.quickstart-title a {
  font-size: 1.4rem;
  font-weight: bold;
  margin-top: 25px;
  color: #222;
  text-align: left;
  text-decoration: none;
}

.quickstart-title a:hover {

  color: var(--accent-color);

}

.quickstart-title a {
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 15px;
  color: #000000;
  text-align: left;
}


.quickstart-text {
  font-size: 1rem;
  color: #000000;
  text-align: left;
}

.quickstart-image {
  width: 360px;
  height: 200px;

}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  width: 55px;
  height: 55px;
  margin: -70px;
  top: 65%;
  background: #007bff;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}

.carousel-control-icon {
  font-size: 28px;
}

.carousel-control-icon {
  font-size: 28px;
}


/* Mobile adjustments */
@media (max-width: 768px) {
  /* Container padding adjustment for mobile */
  .quickstart-container {
    padding: 0 15px;
    padding-right: 30px;
  }
  
  /* Make carousel cards full width on mobile */
  .quickstart-item {
    width: 90%;       /* Use most of the viewport width */
    height: auto;     /* Allow height to adjust automatically */
    margin: 0 auto 20px auto;  /* Center the card and add bottom margin */
  }
  
  /* Make images responsive */
  .quickstart-image {
    width: 100%;
    height: auto;
  }
  
  /* Adjust carousel control sizes and positioning */
  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
    top: 50%;
    margin-top: -20px;
  }
}




@media (max-width: 900px) {


  /* hero */
  .video-background {
    position: relative;
    height: 750px;
    /* Adjust as needed */
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    /* Center content vertically */
    justify-content: center;
    /* Center content horizontally */
  }

  .video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    /* Ensures video covers the entire section */
  }

  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.772);
  }

  .content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: left;

  }

  .content h5 {
    font-size: 2.89rem;
    margin-left: 300px;
    margin-bottom: 1rem;

  }

  .content h1 {
    margin-left: 300px;
    font-size: 3.8rem;
    /* Responsive font size */
    margin-bottom: 1rem;
    font-weight: bold;

  }

  /* wht we */
  .whatwe-container {
    max-width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: left;
  }

  .whatwe-text {
    width: 800px;

    margin-bottom: 30px;
    /* Spacing between text and cards */
  }

  .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 15px;
  }

  .col-6 {
    flex: 0 0 calc(50% - 10px);
    /* Ensures two per row */
    max-width: calc(50% - 50px);
    display: flex;
    justify-content: center;
  }

  .custom-card {
    width: 950px;
    height: auto;
    text-align: left;
  }

}



@media (max-width: 600px) {

  .header .header-container {
    padding: 10px 15px;
    /* Adjust padding */
  }

  .header .logo img {
    max-height: 70px;
    /* Further reduce logo size */
  }

  .navmenu a {
    padding: 10px 5px;
    /* More compact navigation items */
  }

  .header .btn-getstarted {
    font-size: 0.7rem;
    /* Smaller button text for mobile */
  }

  /* hero */
  .video-background {
    position: relative;
    height: 750px;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    align-items: left;
    justify-content: left;

  }

  .video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);



  }

  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.785);

  }

  .content {
    position: relative;
    z-index: 2;
    color: rgb(255, 255, 255);



  }

  .content h5 {
    font-size: 50px;
    margin-bottom: 1rem;
    font-optical-sizing: auto;

  }

  .content h1 {
    font-size: 50px;
    margin-bottom: 1rem;
    font-weight: bold;
  }

  /* what we */
  .center-wrapper {
    display: flex;
    justify-content: flex-start;
    /* Left align */
    align-items: flex-start;
    margin-left: 0;
    width: 100%;
  }

  .whatwe-container {
    max-width: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Left align */
    justify-content: flex-start;
  }

  .whatwedo-container {
    padding: 10px;
    text-align: left;
    /* Ensures left alignment */
  }

  .whatwedo-container p {
    font-size: 1rem;
    padding-top: 5px;
    font-weight: 300;
  }

  h1 {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    text-align: left;
    /* Left align */
  }

  .whatwe-text {
    max-width: 100%;
    font-size: 1.1rem;
    line-height: 1.5;
    margin-top: 30px;
    text-align: left;
    /* Left align */
  }

  .custom-card {
    width: 100%;
    /* Fully responsive */
    max-width: 400px;
    /* Expands up to 400px */
    min-width: 250px;
    /* Shrinks to 250px */

    height: auto;
    padding: 15px;
    margin-bottom: 15px;
  }

  .row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Left align */
    gap: 10px;
  }

  .row .col-6 {
    width: 100%;
    max-width: 400px;
    /* Adjusts dynamically */
    min-width: 250px;
  }

  .row .col-6:nth-child(odd),
  .row .col-6:nth-child(even) {
    margin-top: 0;
  }

  /* track */
  .track-record-section {
    padding: 20px;
    /* Adjust padding for smaller screens */
    height: auto;
    /* Allow natural height */
  }

  .track-record {
    width: 100%;
    flex-direction: column;
    /* Stack elements vertically */
    padding: 10px;
    /* Reduce internal padding */
  }

  .left-section,
  .right-section {
    width: 100%;
    /* Full width */
  }

  .track-heading {
    font-size: 2.5rem;
    max-width: 300px;
    text-align: left;

    margin-bottom: 30px;

  }

  .stat {
    margin: 10px 0;
    /* Spacing between stats */
  }

  .stat-number {
    font-size: 1.5rem;
    max-width: 140px;
    /* Slightly larger for visibility */
  }

  .stat-label {
    font-size: 1rem;
    text-align: left;
    /* Adjust the font size */
  }


  .divider {
    display: none;
    /* Hide the divider */
  }

  /* ind */
  .bento-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Two columns layout */
    gap: 8px;
    width: 100%;
    padding: 0 10px;
  }

  .box {
    position: relative;
    width: 100%;
    height: 170px;
    /* Adjust height for mobile screens */
    border-radius: 10px;
    overflow: hidden;
  }

  .box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .text-overlay-ind {
    position: absolute;
    bottom: 15%;
    left: 8%;
    font-size: 14px;
    text-align: left;
    color: white;
  }

  .text-overlay-industries {
    position: absolute;
    top: 70%;
    left: 8%;
    font-size: 14px;
    text-align: left;
    color: white;
  }

  .heading-industries,
  .heading-ind {
    font-size: 16px;
    font-weight: bold;

  }

  .read-more {
    font-size: 12px;
  }


  .ind-header {
    font-size: 2.5rem;
    text-align: left;
    margin-top: 40px;
    margin-left: 15px;
  }

  .sub-header {
    font-size: 1rem;
    text-align: left;
    max-width: 90%;
    margin: 0 auto;
  }


  .box1,
  .box2,
  .box3,
  .box4,
  .box5,
  .box6,
  .box7,
  .box8,
  .box9 {
    grid-column: span 1;

    grid-row: span 1;
  }

  .box9 {
    grid-column: span 2;
  }

  /* corsrl */
  .carousel-container {
    padding: 50px 0;

    background-size: cover;
  }

  .section-title {
    font-size: 1rem;
  }

  .section-subtitle {
    font-size: 2.2rem;
  }

  #caseStudyCarousel {
    max-width: 100%;
    overflow: hidden;

    position: relative;
  }

  .carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;

  }

  .case-card {
    width: 320px;

    height: 400px;
    margin: 10 auto;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }

  .case-img-top {
    width: 100%;
    height: auto;
    border-bottom: 3px solid var(--accent-color);
  }

  .case-card-body {
    padding: 10px;
  }

  .case-card-title {
    font-size: 1rem;
    text-align: left;
  }

  .case-card-body p {
    font-size: 1rem;
  }

  .slider-controls {
    display: flex;

    margin-top: 10px;
    padding: 0 15px;
  }

  .case-button {
    font-size: 1rem;
    padding: 0.4rem 0.8rem;
    margin: 0 5px;
  }
}